home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 42 / Amiga Format AFCD42 (Issue 126, Aug 1999).iso / -serious- / comms / other / slrn / slrn_src / src / sltcp.h < prev    next >
C/C++ Source or Header  |  1999-05-14  |  2KB  |  64 lines

  1. #ifndef _SLTCP_H_LOADED_
  2. #define _SLTCP_H_LOADED_
  3. /* Copyright (c) 1998 John E. Davis (davis@space.mit.edu)
  4.  *
  5.  * This file is part of slrn.
  6.  *
  7.  * Slrn is free software; you can redistribute it and/or modify it
  8.  * under the terms of the GNU General Public License as published by the
  9.  * Free Software Foundation; either version 2, or (at your option) any
  10.  * later version.
  11.  * 
  12.  * Slrn is distributed in the hope that it will be useful, but WITHOUT
  13.  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14.  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  15.  * for more details.
  16.  * 
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with Slrn; see the file COPYING.  If not, write to the Free
  19.  * Software Foundation, 59 Temple Place - Suite 330, 
  20.  * Boston, MA  02111-1307, USA.
  21.  */
  22.  
  23.  
  24. #if !defined(VMS) || defined(UCX)
  25.  
  26. #include <stdarg.h>
  27.  
  28. typedef struct 
  29. {
  30.    int tcp_fd;
  31. #define SLTCP_EOF_FLAG    0x1
  32.    unsigned int tcp_flags;
  33.    unsigned char *tcp_write_ptr;
  34.    unsigned char *tcp_write_ptr_min;
  35.    unsigned char *tcp_read_ptr_max;
  36.    unsigned char *tcp_read_ptr;
  37. #define SLTCP_BUF_SIZE 8192
  38.    unsigned char tcp_read_buf [SLTCP_BUF_SIZE];
  39.    unsigned char tcp_write_buf [SLTCP_BUF_SIZE];
  40.    unsigned long bytes_out;
  41.    unsigned long bytes_in;
  42. }
  43. SLTCP_Type;
  44.  
  45. extern int sltcp_close_socket (SLTCP_Type *);
  46. extern SLTCP_Type *sltcp_open_connection (char *, int);
  47. extern int sltcp_close (SLTCP_Type *);
  48. extern unsigned int sltcp_read (SLTCP_Type *, char *, unsigned int);
  49. extern unsigned int sltcp_write (SLTCP_Type *, char *, unsigned int);
  50. extern int sltcp_flush_output (SLTCP_Type *);
  51. extern int sltcp_map_service_to_port (char *);
  52. extern int (*SLTCP_Interrupt_Hook) (void);
  53.  
  54. extern int sltcp_fputs (SLTCP_Type *, char *);
  55. extern int sltcp_vfprintf (SLTCP_Type *, char *, va_list);
  56. extern int sltcp_fgets (SLTCP_Type *, char *, unsigned int);
  57.  
  58. extern int sltcp_open_sltcp (void);
  59. extern int sltcp_close_sltcp (void);
  60.  
  61. #endif
  62.  
  63. #endif
  64.